This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Do not work with the NotesUIDocument class... ~Umberto Nongeroson 1.Dec.03 05:32 PM a Web browser Domino Designer 6.0.1Windows XP
As you have observed it is all text there. Use the backend NotesDocument class i.e.
dim d as NotesDocument
set d = uidoc.Document
'then you can refer to the date field in any of the following fashions they all return an LS Date/Time
datevalArray = doc.GetItemValue("DateField")
datevalArray = doc.DateField 'Extended syntax
dateval = doc.DateField(0) 'Extended syntax